home *** CD-ROM | disk | FTP | other *** search
- on ComputeScore aSelectedAnswer
- global gzTRBalloonObj, gTR_BalloonNumJustHit, gzTRPlayerObj, gzTR_ActiveQuestArray, gcTRROVER, gTRGameObj
- if aSelectedAnswer <> 0 then
- set vTheRightOne to getAt(gzTR_ActiveQuestArray, 5)
- if aSelectedAnswer = vTheRightOne then
- set vGotItRight to 1
- ActivateRightAnswer()
- else
- set vGotItRight to 0
- ActivateWrongAnswer()
- end if
- set vBalloonPointValue to mGetMyPointValue(getAt(gzTRBalloonObj, gTR_BalloonNumJustHit))
- if mGetAmIDouble(getAt(gzTRBalloonObj, gTR_BalloonNumJustHit)) then
- set vBalloonPointValue to vBalloonPointValue * 2
- end if
- set vWhosTurn to mGetWhosTurn(gTRGameObj)
- set vOldScore to mGetMyCurrentScore(getAt(gzTRPlayerObj, vWhosTurn))
- if vGotItRight then
- set vNewScore to vOldScore + vBalloonPointValue
- else
- set vNewScore to vOldScore - vBalloonPointValue
- end if
- mSetMyCurrentScore(getAt(gzTRPlayerObj, vWhosTurn), vNewScore)
- if vWhosTurn = 1 then
- set the foreColor of cast "Player1Score" to 0
- set the backColor of cast "Player1Score" to 255
- else
- set the foreColor of cast "Player2Score" to 0
- set the backColor of cast "Player2Score" to 255
- end if
- end if
- SetPlayerScores()
- if mGetPlayMode(gTRGameObj) = 2 then
- SwapTurns()
- end if
- updateStage()
- return vGotItRight
- end
-
- on ActivateRightAnswer
- global gzTR_Rsounds
- set gzTR_Rsounds to list("Ra1", "Ra2", "Ra3", "Ra4", "Ra5", "Ra6")
- repeat with vI = 1 to 10
- updateStage()
- end repeat
- repeat while soundBusy(1)
- nothing()
- end repeat
- puppetSound(0)
- set vSound to random(6)
- updateStage()
- repeat while soundBusy(1)
- nothing()
- end repeat
- puppetSound(0)
- end
-
- on ActivateWrongAnswer
- global gzTR_Wsounds
- set gzTR_Wsounds to list("Wa1", "Wa2", "Wa3", "Wa4", "Wa5", "Wa6")
- puppetSound(0)
- set vSound to random(count(gzTR_Wsounds))
- updateStage()
- repeat while soundBusy(1)
- nothing()
- end repeat
- puppetSound(0)
- end
-
- on HowToPlay
- LaunchHelp()
- end
-
- on KillAllBalloons
- global gcTRBAL_CH1, gzTRBalloonObj
- repeat with vIndex = 1 to 30
- mSetMyVisible(getAt(gzTRBalloonObj, vIndex), 0)
- end repeat
- repeat with vIndex = gcTRBAL_CH1 to gcTRBAL_CH1 + 29
- set the visible of sprite vIndex to 0
- end repeat
- repeat with vIndex = gcTRBAL_CH1 to gcTRBAL_CH1 + 29
- puppetSprite(vIndex, 0)
- end repeat
- updateStage()
- end
-
- on ShowChampions
- global gcTRBAL_CH1
- set the visible of sprite 47 to 1
- SaveHistState()
- MakeChampList()
- MakePersBestList()
- set the visible of sprite 45 to 0
- go("ChampionsATB")
- end
-